home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / cpost_1_4.lha / cpostos2.mak < prev    next >
Text File  |  1995-05-09  |  700b  |  38 lines

  1. COPTS = /ti+ /Gh+ /Q+ /C+ /W3 /Kb+ /DOPSYS_OS2V2
  2. LOPTS = /DEBUG /NOLOGO /PM:VIO /ST:20000
  3.  
  4. OBJS = \
  5.  cpost.obj\
  6.  cpostp1.obj\
  7.  cpostp2.obj\
  8.  cpostutl.obj\
  9.  cpostpar.obj\
  10.  ctok.obj\
  11.  parsearg.obj\
  12.  list.obj\
  13.  hash.obj\
  14.  tokfile.obj
  15.  
  16. LIBS = os2386
  17.  
  18. cpost.exe  : $(OBJS)
  19.     link386 $(LOPTS) $(OBJS),$@,nul,$(LIBS);
  20.  
  21. .c.obj:
  22.     icc $(COPTS) /Fo$@ $<
  23.  
  24. cpost.obj    : cpost.h  ctok.h tokfile.h parsearg.h cposthdr.h
  25. cpostp1.obj  : cpost.h  ctok.h
  26. cpostp2.obj  : cpost.h  ctok.h
  27. cpostutl.obj : cpost.h  ctok.h tokfile.h
  28. cpostpar.obj : cpost.h  ctok.h
  29. ctok.obj     : ctok.h
  30. list.obj     : list.h
  31. hash.obj     : hash.h
  32. tokfile.obj  : tokfile.h
  33. parsearg.obj : parsearg.h
  34.  
  35. clean       :
  36.     del *.obj
  37.     del *.exe
  38.